1433630ce9cd7a5c0c2a0d57eb8370ec564f75b3,scribejava-core/src/main/java/com/github/scribejava/core/oauth/OAuthService.java,OAuthService,OAuthService,#OAuthConfig#,28

Before Change


                config.log("Cannot use async operations, only sync");
            }

            httpClient = getClient(httpClientConfig);
        }
    }

After Change


                config.log("Cannot use async operations, only sync");
            }

            httpClient = externalHttpClient == null ? getClient(httpClientConfig) : externalHttpClient;
        }
    }